home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2000 November / cd joystick no120 novembre 2000 cd 1.iso / data / demos / gunlok / data1.cab / Program_Executable_Files / scripts / cratec.gsh < prev    next >
Text File  |  2000-08-22  |  900b  |  33 lines

  1. // defines a normal cratec
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_CRATEC_GSH
  8. #define INCLUDED_CRATEC_GSH
  9.  
  10. #include "cratec_frag.gsh"
  11.  
  12. ////////////////////////////////////////////////////////////////////////////////////
  13.  
  14. shape Shp_cratec
  15. {
  16.        file "objects\cratec.rif"
  17.        name "CRATE C"
  18. }
  19.  
  20. role Rol_cratec : Rol_PlacedObject
  21. {
  22.     shape                    Shp_cratec
  23.     identifier                "cratec"
  24.     destructibility            Frg_cratec
  25.     destination selectable    yes
  26.     ai                        blocker
  27. }
  28.  
  29. ////////////////////////////////////////////////////////////////////////////////////
  30.  
  31. // end wrapper - for preventing multiple or recursive inclusions
  32. #endif // !INCLUDED_CRATEC_GSH
  33.